home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / etc / profile.d / setup_console.sh < prev   
Encoding:
Text File  |  2013-01-06  |  354 b   |  11 lines

  1. # Only run if this is an interactive text bash session
  2. if [ -n "$PS1" ] && [ -n "$BASH_VERSION" ] && [ -z "$DISPLAY" ]; then
  3.    echo "Press enter to activate this console"
  4.    read answer
  5.    # The user should have chosen their preferred keyboard layout
  6.    # in tails-greeter by now.
  7.    . /etc/default/locale
  8.    . /etc/default/keyboard
  9.    sudo setupcon
  10. fi
  11.